*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto' , sans-serif;
}

.container{
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    padding-left: 8%;
    padding-right: 8%;
    box-sizing: border-box;
}

.navbar{
    height: 12%;
    display: flex;
    align-items: center;
}

.logo{
    width: 50px;
    height:auto;
    cursor: pointer;
}

nav{
    flex: 1;
    text-align: right;
}
nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 80px;   
}
nav ul li a{
    text-decoration: none;
    color: #ffffff;
    font-size: 17px;
}

nav ul li a button{
    display: inline-block;
    width: 180px;
    height:auto;
    color: #000;
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    padding: 12px 0;
    background: #fff;
    border: 0;
    border-radius: 20px;
    outline: none;
    margin-top: 50 px;
    transition: transform 0.5s;
    border: none;
    border-radius: 20px;
    box-shadow: 0 5px #999;
}
  
button:active {
    background-color: #a07f88;
    box-shadow: 0 4px #666;
    transform: translateY(4px);
  }
nav ul li a button:hover{
    background-color: #a07f88; 
    color: white;
}
.row{
    display: flex;
    height: 88%;
    align-items: center;
}

.col{
    flex-basis: 50%;
}

h1{
    color: #fff;
    font-size: 100px;
}
h2{
    color: rgba(116, 50, 53, 0.7);
    font-size: 50px;
    padding-left: 150px;
}
p{
    color: #fff;
    font-size: 11px;
    line-height: 15px;
    margin-bottom: 20px;
}

button{
    width: 180px;
    color: #000;
    font-size: 12px;
    padding: 12px 0;
    background: #fff;
    border: 0;
    border-radius: 20px;
    outline: none;
    margin-top: 50 px;
    transition: transform 0.5s;
}

div a button:hover{
    background-color: #a07f88; 
    color: white;
}